home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
SETUP
/
US
/
CBUILDER
/
DATA.Z
/
BASEMOD.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-13
|
1KB
|
36 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef BaseModH
#define BaseModH
//---------------------------------------------------------------------------
#include <windows.hpp>
#include <messages.hpp>
#include <sysutils.hpp>
#include <classes.hpp>
#include <graphics.hpp>
#include <controls.hpp>
#include <forms.hpp>
#include <dialogs.hpp>
#include <extctrls.hpp>
#include <stdctrls.hpp>
//---------------------------------------------------------------------------
class TBase : public TForm
{
__published:
TPanel *Panel1;
TPanel *Panel2;
TLabel *Label1;
TButton *Button1;
void __fastcall Button1Click(TObject *Sender);
private: // private user declarations
public: // public user declarations
virtual __fastcall TBase(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TBase *Base;
//---------------------------------------------------------------------------
#endif